    /* --- CORE SETTINGS --- */
    .fb-box-v7-scope {
        background: #000;
        color: #fff;
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .fb-box-v7-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        margin-top: 50px;
    }

    /* --- HERO --- */
    .fb-box-v7-hero {
        padding: clamp(80px, 15vh, 150px) 0;
        background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('') center/cover;
        border-bottom: 5px solid #ffcc00;
        text-align: left;
    }

    .fb-box-v7-meta {
        color: #ffcc00;
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .fb-box-v7-scan {
        width: 12px;
        height: 12px;
        background: #ffcc00;
        border-radius: 2px;
        animation: fb-box-blink 1.5s infinite;
    }

    @keyframes fb-box-blink {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.3;
            transform: scale(1.2);
        }
    }

    .fb-box-v7-h1 {
        font-size: clamp(2.5rem, 7vw, 4rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .fb-box-v7-h1 span {
        color: #ffcc00;
    }

    .fb-box-v7-p {
        max-width: 600px;
        color: #ccc;
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .fb-box-v7-btns {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .fb-box-v7-btn-y {
        background: #ffcc00;
        color: #000;
        padding: 15px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
    }

    .fb-box-v7-btn-w {
        border: 2px solid #fff;
        color: #fff;
        padding: 13px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
    }

    .fb-box-v7-btn-y:hover {
        background: #fff;
        transform: translateY(-5px);
    }

    /* --- SPLit SECTION --- */
    .fb-box-v7-section {
        padding: clamp(60px, 10vh, 100px) 0;
    }

    .fb-box-v7-bg-alt {
        background: #080808;
    }

    .fb-box-v7-split {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
    }

    .fb-box-v7-title {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        font-weight: 800;
        margin-bottom: 25px;
    }

    .fb-box-v7-title span {
        color: #ffcc00;
    }

    .fb-box-v7-desc {
        color: #bbb;
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .fb-box-v7-stats {
        display: flex;
        gap: 15px;
    }

    .fb-box-v7-s-card {
        background: #111;
        padding: 15px 20px;
        border-left: 4px solid #ffcc00;
        font-size: 0.9rem;
    }

    .fb-box-v7-s-card strong {
        color: #ffcc00;
        display: block;
        font-size: 1.1rem;
    }

    .fb-box-v7-img-box {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #333;
    }

    .fb-box-v7-img {
        width: 100%;
        display: block;
        filter: grayscale(50%);
        transition: 0.5s;
    }

    .fb-box-v7-img-box:hover .fb-box-v7-img {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

    .fb-box-v7-tag {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: #ffcc00;
        color: #000;
        padding: 5px 12px;
        font-weight: 900;
        font-size: 10px;
    }

    /* --- FEATURES --- */
    .fb-box-v7-head-center {
        text-align: center;
        margin-bottom: 50px;
    }

    .fb-box-v7-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .fb-box-v7-card {
        background: #111;
        padding: 50px 40px;
        border-radius: 12px;
        border: 1px solid #222;
        transition: 0.4s;
    }

    .fb-box-v7-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .fb-box-v7-active {
        border-color: #ffcc00;
        background: #151515;
    }

    .fb-box-v7-card:hover {
        transform: translateY(-10px);
        border-color: #ffcc00;
    }

    .fb-box-v7-card h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .fb-box-v7-card p {
        color: #888;
        font-size: 0.95rem;
    }

    /* --- DUAL PANE --- */
    .fb-box-v7-dual {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    @media (min-width: 768px) {
        .fb-box-v7-dual {
            grid-template-columns: 1fr 1fr;
        }
    }

    .fb-box-v7-pane {
        padding: 45px;
        border-radius: 12px;
    }

    .fb-box-v7-black {
        background: #111;
        border: 1px solid #222;
    }

    .fb-box-v7-yellow {
        background: #ffcc00;
        color: #000;
    }

    .fb-box-v7-list,
    .fb-box-v7-list-dark {
        list-style: none;
        padding: 0;
        margin-top: 25px;
    }

    .fb-box-v7-list li,
    .fb-box-v7-list-dark li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        padding-left: 30px;
        font-weight: 700;
    }

    .fb-box-v7-list-dark li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .fb-box-v7-list li::before {
        content: '■';
        position: absolute;
        left: 0;
        color: #ffcc00;
        font-size: 14px;
    }

    .fb-box-v7-list-dark li::before {
        content: '■';
        position: absolute;
        left: 0;
        color: #000;
        font-size: 14px;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 992px) {
        .fb-box-v7-split {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .fb-box-v7-col-img {
            order: -1;
        }

        .fb-box-v7-stats {
            justify-content: center;
        }

        .fb-box-v7-hero {
            text-align: center;
        }

        .fb-box-v7-meta {
            justify-content: center;
        }

        .fb-box-v7-btns {
            justify-content: center;
        }
    }

    @media (max-width: 600px) {
        .fb-box-v7-btns {
            flex-direction: column;
        }

        .fb-box-v7-btn-y,
        .fb-box-v7-btn-w {
            width: 100%;
            text-align: center;
        }

        .fb-box-v7-stats {
            flex-direction: column;
        }
    }